Intersoft ClientUI Documentation
Equality Operator (Range<T>)



Left-hand side range.
Right-hand side range.
Compare two ranges and return a value indicating whether they are equal.
Syntax
Public Operator =( _
   ByVal leftRange As Range(Of T), _
   ByVal rightRange As Range(Of T) _
) As Boolean

            
public bool operator ==( 
   Range<T> leftRange,
   Range<T> rightRange
)
public:
bool operator ==( 
   Range<T^> leftRange,
   Range<T^> rightRange
)

Parameters

leftRange
Left-hand side range.
rightRange
Right-hand side range.

Return Value

A value indicating whether the ranges are equal.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Range<T> Structure
Range<T> Members

Send Feedback